.fixed-media {
    position: fixed;
    right: 30px;
    bottom: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #4776E6;
    transition: .4s ease;
    cursor:default;
    z-index: 1000;
    box-shadow: 0 0 7px #fff, 0 0 7px #000;
    animation: pop-in 1s ease-in;
}

@keyframes pop-in {
    0% {
        scale: 0;
        transform: translateY(-17px);
        background: #fc1515;
    }

    10% {
        scale: .4;
    }

    12% {
        scale: .5;
        background: #fc1515;
    }

    50% {
        scale: .5;
    }

    71% {
        scale: 1;
    }

    100% {}
}

.media-inner .times {
    display: none;
    margin-left: 12px;
    position: relative;
    top: -10px;
    font-size: 2.5rem;
    color: #fff;
    transition: .4s ease;
}
.fixed-media:hover .times{
    display: block;
}
.fixed-media:hover .dots ,
.fixed-media:hover .msg-p{
    display: none;
}

/* Hey message Css And Animation */
.media-inner .msg-p {
    opacity: 0;
    background: #d67070;
    width: 60px;
    color: #fff;
    text-align: center;
    border-radius: 50px;
    padding: 3px 5px;
    position: relative;
    transition: .4s ease;
    top: -30px;
    margin-left: -30px;
    animation: msg-p 3s ease-in;
    animation-delay: 1s;
}

.media-inner .msg-p::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    transform: rotate(15deg);
    background: #d67070;
    bottom: 0;
}

@keyframes msg-p {
    0% {
        opacity: 1;
        scale: 0;
        top: 0;
    }

    5% {
        scale: 1;
        top: -30px;
    }

    39% {
        scale: 1;
        top: -30px;
    }

    40% {
        scale: .9;
    }

    42% {
        scale: 1;
    }

    99% {
        opacity: 1;
        scale: 1;
        top: -30px;
    }

    100% {
        scale: 0;
        top: 0px;
    }
}

/* Dots Css And Animation */

.dots {
    margin-left: 13px;
    margin-top: -25px;
    color: #fff !important;
    font-size: 1.3rem;
}

.dot {
    animation: loaddot 1s linear infinite;
    position: relative;
    animation-delay: .3s;
}

.dot:nth-child(2) {
    animation-delay: .5s;
}

.dot:nth-child(2) {
    animation-delay: .5s;
}


@keyframes loaddot {
    25% {
        top: -1px;
    }

    70% {
        top: 1px;
    }
}

/* -------------------------fixed media inner icon ------------------------ */
.fixed-media:hover .media-icon {
    display: block;
}

.media-icon {
    position: absolute;
    top: -146px;
    left: -70px;
    width: 135px;
    display: none;
    transition: 1s ease;
    animation: onecome 3s ease-in;
}

@keyframes onecome {
    0% {
        transform: scaleY(0) translateY(100px);
    }

    5% {
        transform: scaleY(1) translate(0);
    }
}

.fixed-item-icon:hover img {
    filter: grayscale(0);
}

.query-a {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    width: 135px;
    border-radius: 50px;
    text-decoration: none;
    padding: 3px 7px;
    background: #046f8f;
    transition: .2s ease;
    margin: 3px 0;
}

.query-a span {
    font-size: 14px;
    color: #fff;
    display: block;
}

.query-a img {
    filter: grayscale(1);
    transform: .3s ease;
}
/* -------------------------------------------Form----------------------------------- */
.fixed-query-form{
    position: fixed;
    background: rgba(0, 0, 0,  0.6) ;
    z-index: 999;
    top: 0;
    width: 100vw;
    height: 100vh;
    transition: .4s ease;
}
.form-body{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fixed-query-form form{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #fff;
    padding: 15px 30px;
    width: 350px;
    min-height: 400px;
    border-radius: 5px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 3px #fff,0 0 4px #000;
    flex-direction: column;
}
.fixed-query-form form input ,textarea{
    margin: 9px 0;
    border: 1px solid #fff;
    border-radius: 2px;
    width: 100%;
    padding: 5px 7px;
}
.fixed-query-form form input[type="submit"]{
    background: #4776e6;
    border: none;
    box-shadow: 0 0 2px  #fff;
    color:#fff;
}
